home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / getlines.zip / MAKEFILE.DOS < prev    next >
Text File  |  1994-05-21  |  140b  |  11 lines

  1. # MAKEFILE DEMO
  2.  
  3. CC       = bcc
  4. DIR      = c:\borlandc
  5. CFLAGS   = -Z -O -d
  6.  
  7. all: getlines.exe
  8.  
  9. .c.exe:
  10.         $(CC) $(CFLAGS) $<
  11.